码迷,mamicode.com
首页 >  
搜索关键字:yum list | grep zsh    ( 87714个结果
shell script
#ping whole local domainfor ip in {1..255};do ping -c 3 192.168.110.$ip >> ping.log;done grep '3 ttl' ping.log |awk '{print $4}' | sed 's\:\\g' |while ...
分类:系统相关   时间:2021-06-02 20:19:59    阅读次数:0
express初识
express是一个基于node的极其轻量级的框架,用于快速开发web及移动端应用 首先,电脑中如果没有express全局环境,需要指令 npm install express -g 进行全局环境的安装。如果想用express脚手架创建项目,也要用指令 npm install express-gen ...
分类:其他好文   时间:2021-06-02 20:18:55    阅读次数:0
FreeRTOS Task Management (1) - list 实现
FreeRTOS Task Management (1) - list 实现 list结构是FreeRTOS Task Management 等模块重要的数据结构,其源码在list.c 和list.h中。 以下结合源码来分析list的结构与功能的实现细节。 1 结构体定义 /* list结构由以下三 ...
分类:其他好文   时间:2021-06-02 20:15:54    阅读次数:0
leetcode_python_删除链表的倒数第N个节点
第一轮: 方法1:求长度,减去n得到被删除节点的前一个节点,直接跨越链接。若num=0则删除的是首节点 # Definition for singly-linked list. # class ListNode: # def __init__(self, val=0, next=None): # s ...
分类:编程语言   时间:2021-06-02 20:11:51    阅读次数:0
CentOS7使用iptables
1、先停用CentOS7自带的防火墙 //关闭防火墙 systemctl stop firewalld.service //永久关闭防火墙 systemctl disable firewalld.service 2、安装iptables yum install -y iptables-service ...
分类:其他好文   时间:2021-06-02 20:03:37    阅读次数:0
迭代器切片操作实现
一、可迭代对象基于islice方法实现切片操作 二、islice实现实例: print(list(islice(range(1, 10), 2, 7, 2))) 三、自定义切片方法实现实例: def my_islice(iterable, start, end, step=1): tmp = 0 f ...
分类:其他好文   时间:2021-06-02 19:40:35    阅读次数:0
类的编译顺序
Initialization order The order of member initializers in the list is irrelevant: the actual order of initialization is as follows: 1) If the construct ...
分类:其他好文   时间:2021-06-02 19:16:37    阅读次数:0
leetcode-python-最长公共前缀
第一轮刷题解法: 1)如果长度为1,返回第一个字符串;如果存在空,返回空;否则长度递增,逐一比较,有不同则返回当前前缀。 class Solution: def longestCommonPrefix(self, strs: List[str]) -> str: count_prefix = 1 i ...
分类:编程语言   时间:2021-06-02 19:01:16    阅读次数:0
CentOS7安装mysql8
1、进入mysql官网,下载并安装mysql8的yum源 访问https://dev.mysql.com/downloads/repo/yum/ ,下载centos7对应的mysql yum源包并上传到centos7服务器 2. 安装mysql yum源包 # rpm -ivh mysql80-co ...
分类:数据库   时间:2021-06-02 18:58:59    阅读次数:0
list<obj>提取int类型进行计算
1 /** 2 * Statistics测试. 3 * 4 * @param streamBeanList 5 */ 6 public void testStatistics(List<StreamBean> streamBeanList) { 7 8 IntSummaryStatistics in ...
分类:其他好文   时间:2021-06-02 18:57:02    阅读次数:0
87714条   上一页 1 ... 28 29 30 31 32 ... 8772 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!